home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / SRC.ARC / REWIND.C < prev    next >
Text File  |  1984-06-17  |  256b  |  14 lines

  1. /*    rewind.cl - rewind a stream.
  2.     (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  84/06/16.
  4.     Ver 1.0-4616.
  5. */
  6.  
  7. #include "stdio.h"
  8.  
  9. rewind(fp) /* rewind a stream */
  10. FILE *fp;
  11. {
  12.     fseek(fp, 0L, 0);
  13. }
  14.